Forum Activity for @douglas

douglas
@douglas
01/15/17 02:10:43PM
2,806 posts

White page


Using Jamroom

So plugins is a profile, except there isn't a user associated with the profile, is the site master admin suppose to be the user associated with the plugins profile?
douglas
@douglas
01/15/17 11:33:05AM
2,806 posts

White page


Using Jamroom

izhmel:
The site was not crated by site builder, how do I show the contents of the plugins.tpl file?

plugins.tpl is a custom template that would have been created by you, or maybe it is a profile, that is the only two things it can be. Is that the only page that is white screened? If so, login to the ACP and look for a profile named plugins.

If this is not the case, can you send you admin login so I can check it out?

Thanks!
douglas
@douglas
01/15/17 09:10:46AM
2,806 posts

White page


Using Jamroom

Can you show us the contents of the plugins.tpl file?

Or was the page created via Site Builder?
douglas
@douglas
01/14/17 09:53:28AM
2,806 posts

White page


Using Jamroom

izhmel:
This link produces a white page how can I fix it ?
http://dubmusic.com/plugins/

Check your data/logs folder for errors, you most likely have a template error.

Hope this helps!
douglas
@douglas
01/14/17 07:10:33AM
2,806 posts

Whats up everyone!


Off Topic

Welcome @mary!
douglas
@douglas
01/14/17 07:05:58AM
2,806 posts

back ground color


Using Jamroom

That is what the FireFox's developer tools do, in fact I think most browser have this now, right click on a section and click inspect element, it will show you html and CSS classes and id's used.

Hope this helps!
douglas
@douglas
01/11/17 02:37:53PM
2,806 posts

Header prevents access to top tabs and login fields on ipad


Installation and Configuration

Okay, in your table_core.css file, try changing this:

    #header {
        height: 115px !important;
    }

to this:

    #header {
        height: 115px !important;
        position: inherit;
    }

See if that fixes it.
douglas
@douglas
01/11/17 11:24:38AM
2,806 posts

Header prevents access to top tabs and login fields on ipad


Installation and Configuration

If I recall correctly, your using a clone of the ningja/ninja skin, there is a spacer class used for the desktop, try adding it to your mobile_core or tablet_core CSS files and add more space, it looks like this:

.spacer {
    padding-top: 75px;
}

Try changing 75px to 125px and see if that helps any.
douglas
@douglas
01/11/17 08:51:12AM
2,806 posts

Header prevents access to top tabs and login fields on ipad


Installation and Configuration

In your mobile_core.css file, try changing the header position to static instead of inherit...

#header {
        position: static;

Hope this helps!
updated by @douglas: 01/11/17 08:51:25AM
  74